home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 25 / Cream of the Crop 25.iso / bbs / mhis020.zip / OLD.TXT < prev    next >
Text File  |  1996-09-06  |  433b  |  18 lines

  1.   if (c.min_date = 0) {
  2.     temp_string := "none";
  3.     }
  4.   else {
  5.     long_to_stamp (c.min_date, temp_stamp);
  6.     temp_string := date_string (temp_stamp.date);
  7.     };
  8.   show_data ("Start date", temp_string);
  9.   if (c.min_date = 0) {
  10.     temp_string := "none";
  11.     }
  12.   else {
  13.     long_to_stamp (c.max_date, temp_stamp);
  14.     temp_string := date_string (temp_stamp.date);
  15.     };
  16.   show_data ("End date", temp_string);
  17.  
  18.